home *** CD-ROM | disk | FTP | other *** search
/ Grapevine 20 / Grapevine 20 (Disk 1 of 2).adf / Files / arexxexamps.lha / ARTICLES / AREXX_EXAMPLES / Example4.rexx < prev    next >
OS/2 REXX Batch file  |  1980-01-07  |  148b  |  8 lines

  1. /* Example 4 */
  2.  
  3. Say "Enter Number 1 : "
  4. Parse Pull a
  5. Say "Enter Number 2 : "
  6. Parse Pull b
  7. c = a + b
  8. Say "Number 1 : " a "  + Number 2 : " b " = " c